Tag Selectors
Just like you saw in the previous video, consider a web page with multiple paragraph tags. If we write a CSS ruleset use a p selector, which paragraph(s) would be affected by the style?
p
p { background-colors: pink; {
The first paragraph
All paragraphs
Here's how we approached solving this exercise:
Next Concept